blob: 3a40362006e8812a5950d7c4be86528564bbbc80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { EvaluationPage } from "@/lib/evaluation-submit/evaluation-page"
import { Metadata } from "next"
export const metadata: Metadata = {
title: "평가 작성",
description: "협력업체 평가를 작성합니다",
}
interface PageProps {
params: {
id: string
}
}
export default function Page({ params }: PageProps) {
return <EvaluationPage />
}
export async function generateStaticParams() {
// 동적 경로이므로 빈 배열 반환
return []
}
|